home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1994 March / Internet Info CD-ROM (Walnut Creek) (March 1994).iso / networking / osi / isode / dosisode / DOSISODE80.ZIP / ISODE8.WRK / UNIX / H / SYS / TTYDEV.H < prev    next >
Encoding:
C/C++ Source or Header  |  1992-03-19  |  807 b   |  52 lines

  1. /*    @(#)ttydev.h 2.8 89/06/16 SMI; from UCB 4.3 83/05/18    */
  2.  
  3. /*
  4.  * Terminal definitions related to underlying hardware.
  5.  */
  6.  
  7. #ifndef    __sys_ttydev_h
  8. #define    __sys_ttydev_h
  9.  
  10. /*
  11.  * Speeds
  12.  */
  13. #define    B0    0
  14. #define    B50    1
  15. #define    B75    2
  16. #define    B110    3
  17. #define    B134    4
  18. #define    B150    5
  19. #define    B200    6
  20. #define    B300    7
  21. #define    B600    8
  22. #define    B1200    9
  23. #define    B1800    10
  24. #define    B2400    11
  25. #define    B4800    12
  26. #define    B9600    13
  27. #define    B19200    14
  28. #define    B38400    15
  29. #ifndef    _POSIX_SOURCE
  30. #define    EXTA    14
  31. #define    EXTB    15
  32. #endif
  33.  
  34. #ifdef    KERNEL
  35. /*
  36.  * Hardware bits.
  37.  * SHOULD NOT BE HERE.
  38.  */
  39. #define    DONE    0200
  40. #define    IENABLE    0100
  41.  
  42. /*
  43.  * Modem control commands.
  44.  */
  45. #define    DMSET        0
  46. #define    DMBIS        1
  47. #define    DMBIC        2
  48. #define    DMGET        3
  49. #endif    /* KERNEL */
  50.  
  51. #endif    /* !__sys_ttydev_h */
  52.